home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 March / macformat-022.iso / Shareware City / Developers / src / out-of-phase-102-c / OutOfPhase 1.02 Source / OutOfPhase Folder / SymbolicDuration.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-23  |  744 b   |  26 lines  |  [TEXT/KAHL]

  1. /* SymbolicDuration.h */
  2.  
  3. #ifndef Included_SymbolicDuration_h
  4. #define Included_SymbolicDuration_h
  5.  
  6. /* SymbolicDuration module depends on */
  7. /* MiscInfo.h */
  8. /* Audit */
  9. /* Debug */
  10. /* Definitions */
  11. /* DataMunging */
  12. /* NoteObject */
  13. /* Memory */
  14. /* SymbolicIsItInThere */
  15.  
  16. /* convert the duration flags into a heap allocated string */
  17. char*                                NumericDurationToString(unsigned long Duration,
  18.                                             MyBoolean DotFlag, unsigned long Division);
  19.  
  20. /* obtain duration attributes from the string passed in.  if the duration attribute */
  21. /* can't be determined, then *Duration will remain unchanged */
  22. void                                StringToNumericDuration(char* String, unsigned long* Duration,
  23.                                             MyBoolean* DotFlag, unsigned long* Division);
  24.  
  25. #endif
  26.